home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / freeWAIS-sf-1.1 / x / cursor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-04  |  2.4 KB  |  67 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    This is part of the shell user-interface for the WAIS software.  Do with it
  6.    as you please.
  7.  
  8.    jonathan@Think.COM
  9. */
  10.  
  11. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  12.  
  13. /*
  14.  * $Log: cursor.h,v $
  15.  * Revision 1.2  1994/08/05  07:30:53  pfeifer
  16.  * Release beta 04
  17.  *
  18.  * Revision 1.1  1993/02/16  15:10:18  freewais
  19.  * Initial revision
  20.  *
  21.  * Revision 1.1  92/03/17  14:12:46  jonathan
  22.  * Initial revision
  23.  * 
  24.  */
  25.  
  26. #define cursor_width 16
  27. #define cursor_height 16
  28. static char cursor_mask[] = {
  29.    0xc0, 0x03, 0xf0, 0x0f, 0xfc, 0x3f, 0xfe, 0x7f, 0xfe, 0x7f, 0xff, 0xff,
  30.    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xfe, 0x7f,
  31.    0xfc, 0x3f, 0xf8, 0x1f, 0xf0, 0x0f, 0xc0, 0x03};
  32.  
  33. static char cursor0_bits[] = {
  34.    0xff, 0xff, 0xff, 0xfc, 0xbf, 0xf1, 0x67, 0xe3, 0xe3, 0xc5, 0xe3, 0xc6,
  35.    0xe1, 0x83, 0xc1, 0x83, 0x81, 0x85, 0x01, 0x81, 0x03, 0xcf, 0x03, 0xcf,
  36.    0x07, 0xe6, 0x0f, 0xf6, 0x3f, 0xfe, 0xff, 0xff};
  37.  
  38. static char cursor1_bits[] = {
  39.    0xff, 0xff, 0x1f, 0xff, 0x1f, 0xfd, 0x0f, 0xfb, 0x0b, 0xef, 0x07, 0xf7,
  40.    0x07, 0x9f, 0x07, 0x9e, 0x03, 0xac, 0x01, 0x88, 0x13, 0xf8, 0x3f, 0xf8,
  41.    0x3f, 0xf0, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff};
  42.  
  43. static char cursor2_bits[] = {
  44.    0xff, 0xff, 0xff, 0xfd, 0xbf, 0xf0, 0xff, 0xe0, 0xbf, 0xc0, 0x7f, 0xc0,
  45.    0x7f, 0x80, 0x7f, 0x80, 0x3f, 0x80, 0x15, 0x80, 0x23, 0xc1, 0x8b, 0xc3,
  46.    0xc7, 0xe3, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff};
  47.  
  48. static char cursor3_bits[] = {
  49.    0xff, 0xff, 0x1f, 0xff, 0xff, 0xf5, 0xff, 0xe7, 0xff, 0xc5, 0xf9, 0xc3,
  50.    0xfb, 0x83, 0xf7, 0x83, 0xf7, 0x81, 0xa7, 0x80, 0x03, 0xc9, 0x47, 0xdc,
  51.    0x07, 0xfe, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff};
  52.  
  53. static char cursor4_bits[] = {
  54.    0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xff,
  55.    0xb9, 0xbf, 0x7d, 0xbf, 0x7d, 0x9f, 0x3d, 0x8a, 0x3b, 0xd0, 0x5f, 0xc0,
  56.    0x1f, 0xf0, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff};
  57.  
  58. static char cursor5_bits[] = {
  59.    0xff, 0xff, 0x3f, 0xff, 0xc7, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0x43, 0xfc,
  60.    0x83, 0xbb, 0xc5, 0xb7, 0xc1, 0x97, 0xc3, 0x83, 0x8f, 0xc3, 0x8f, 0xc5,
  61.    0x83, 0xe1, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff};
  62.  
  63. static char cursor6_bits[] = {
  64.    0xff, 0xff, 0xff, 0xfc, 0x7f, 0xfc, 0x6f, 0xfc, 0xbf, 0xfc, 0xdf, 0xc8,
  65.    0x7d, 0xf0, 0x79, 0xf8, 0xb1, 0xf8, 0x21, 0xf8, 0xe3, 0xf1, 0xe3, 0xf1,
  66.    0xc7, 0xf0, 0xcf, 0xf0, 0xff, 0xf9, 0xff, 0xff};
  67.